home *** CD-ROM | disk | FTP | other *** search
/ PCNet 2006 March / PCnet 2006-06.3.iso / Apps / Flash / FDBuilder1160CNET.exe / CDTools / startup.swf / scripts / DefineSprite_261 / frame_2 / DoAction.as
Encoding:
Text File  |  2005-09-25  |  475 b   |  16 lines

  1. i = 0;
  2. while(i < dustcount)
  3. {
  4.    var nama = "smoke" + i + 1;
  5.    this.attachMovie("fireDust",nama,i + 1);
  6.    this[nama].tscale = (rand(dustmax - dustmin) + dustmin) * 10;
  7.    this[nama]._rotation = rand(rotation) - rotation / 2 - 90;
  8.    this[nama]._x = rand(roomWidth);
  9.    this[nama]._y = rand(roomHeight);
  10.    this[nama].xspeed = rand(xspeed) + 1;
  11.    this[nama].zspeed = rand(zspeed);
  12.    this[nama].gravity = gravity;
  13.    this[nama].fade = rand(5) + 3;
  14.    i++;
  15. }
  16.